home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 665 b | 36 lines | [TEXT/ScoM] |
- ; grooves in def-section
-
- (def-orchestra 'orchestra
- all-instruments (synth)
- )
-
- ; Grooves are written the same way as lengths. There can be a one
- ; pattern for the whole section, or own groove pattern for each
- ; zone. All instruments can have own grooves. If no groove is
- ; defined, no grooving takes place.
-
- (def-section sect-a
- default
- zone '(1/1 1/1 1/1 1/1)
- tonality (activate-tonality (major c 4))
- length '(1/8)
- velocity '(64)
- synth
- symbol '(a b c)
- duration '(1/4)
- groove '(1/32 1/16t)
- )
-
- (def-channel
- synth 1
- )
-
- (def-tempo 120)
-
- (midiport :printer)
-
- (play-file-p "Grooving"
- all-instruments '(sect-a)
- )
-
-